home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / H-K / Hello Tabby Folder / Jump.p < prev    next >
Encoding:
Text File  |  1989-07-22  |  363 b   |  19 lines  |  [TEXT/PJMM]

  1. program Jump (input, output);
  2.  
  3. { Program to jump to next NetMail application                                }
  4.  
  5. { Next two lines handle Debug and Names options in compiler            }
  6.  
  7. {$D-}
  8. {$N-}
  9.  
  10.     uses
  11.         Globals, HelloTabby;
  12.  
  13. { ------------------------------------------------------ }
  14.  
  15. begin
  16.     HelloTabby;    { find out what's next on the launchpad }
  17.     if NextLaunch <> '' then
  18.         LaunchNextAppl
  19. end.